home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 60 / IOPROG_60.ISO / soft / c++ / gsl-1.1.1-setup.exe / {app} / src / cblas / chpr2.c < prev    next >
Encoding:
C/C++ Source or Header  |  2002-04-18  |  338 b   |  14 lines

  1. #include <gsl/gsl_math.h>
  2. #include <gsl/gsl_cblas.h>
  3. #include "cblas.h"
  4.  
  5. void
  6. cblas_chpr2 (const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo,
  7.          const int N, const void *alpha, const void *X, const int incX,
  8.          const void *Y, const int incY, void *Ap)
  9. {
  10. #define BASE float
  11. #include "source_hpr2.h"
  12. #undef BASE
  13. }
  14.